-
-
Notifications
You must be signed in to change notification settings - Fork 599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(repo): correct READMEs, minimatch to picomatch #1260
Merged
shellscape
merged 14 commits into
rollup:master
from
sapphi-red:fix-minimatch-picomatch
Sep 12, 2022
Merged
chore(repo): correct READMEs, minimatch to picomatch #1260
shellscape
merged 14 commits into
rollup:master
from
sapphi-red:fix-minimatch-picomatch
Sep 12, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sapphi-red
requested review from
tjenkinson,
Andarist and
shellscape
as code owners
September 8, 2022 12:59
Andarist
approved these changes
Sep 8, 2022
shellscape
changed the title
fix: correct minimatch to picomatch
chore(repo): correct READMEs, minimatch to picomatch
Sep 12, 2022
Verified the failing test is passing locally, so merging this as-is. |
Jesuis33
pushed a commit
to Jesuis33/ReinhardOosthuizen
that referenced
this pull request
Sep 19, 2022
* fix(babel): correct minimatch to picomatch * fix(buble): correct minimatch to picomatch * fix(commonjs): correct minimatch to picomatch * fix(dsv): correct minimatch to picomatch * fix(dynamic-import): correct minimatch to picomatch * docs(graphql): correct minimatch to picomatch * fix(image): correct minimatch to picomatch * fix(inject): correct minimatch to picomatch * fix(replace): correct minimatch to picomatch * fix(strip): correct minimatch to picomatch * fix(sucrase): correct minimatch to picomatch * docs(typescript): correct minimatch to picomatch * fix(url): correct minimatch to picomatch * fix(yaml): correct minimatch to picomatch
9 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Rollup Plugin Name:
babel
,buble
,commonjs
,dsv
,dynamic-import-vars
,graphql
,image
,inject
,replace
,strip
,sucrase
,typescript
,url
,yaml
This PR contains:
Are tests included?
Breaking Changes?
If yes, then include "BREAKING CHANGES:" in the first commit message body, followed by a description of what is breaking.
List any relevant issue numbers:
Description
createFilter
func from@rollup/pluginutils
<=v3.0.10 uses picomatch and >v3.0.10 usesminimatch
(#306).picomatch
supports slightly different features fromminimatch
. https://github.com/rollup/plugins/tree/master/packages/pluginutils#include-and-excludeSo I updated documents/dts from "minimatch pattern" to "picomatch pattern".
This is the list that shows which plugin uses which version of
@rollup/pluginutils
:@rollup/plugin-babel
: ^3.1.0@rollup/plugin-buble
: ^3.1.0@rollup/plugin-commonjs
: ^3.1.0@rollup/plugin-dsv
: ^3.1.0@rollup/plugin-dynamic-import-vars
: ^4.1.2@rollup/plugin-graphql
: ^4.0.0@rollup/plugin-image
: ^3.1.0@rollup/plugin-inject
: ^3.1.0@rollup/plugin-replace
: ^3.1.0@rollup/plugin-strip
: ^3.1.0@rollup/plugin-sucrase
: ^4.1.1@rollup/plugin-typescript
: ^3.1.0@rollup/plugin-url
: ^4.2.1@rollup/plugin-yaml
: ^3.1.0I didn't change:
@rollup/plugin-json
: because it uses@rollup/pluginutils
^3.0.8, so eitherminimatch
orpicomatch
might be used@rollup/plugin-multi-entry
: because it usesmatched